home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 April / macformat-023.iso / Reader's Corner / Reader's Contibutions / Modified / FrEQuency data / 00093.ls < prev    next >
Encoding:
Text File  |  1995-01-19  |  576 b   |  23 lines

  1. on exitFrame
  2.   global gunfire
  3.   if the movieRate of sprite 1 = 1 then
  4.     set the movieTime of sprite 33 to 0
  5.     set the movieRate of sprite 33 to 1
  6.     set the movieRate of sprite 1 to 0
  7.     play frame "lay back"
  8.   end if
  9.   if the movieRate of sprite 33 = 1 then
  10.     set the movieTime of sprite 1 to 0
  11.     set the movieRate of sprite 1 to 1
  12.     set the movieRate of sprite 33 to 0
  13.     play frame "lay back"
  14.   end if
  15.   set the movieRate of sprite 4 to 1
  16.   set gunfire to gunfire + 1
  17.   if gunfire = 2 then
  18.     play frame "looper"
  19.   else
  20.     play frame "lay back"
  21.   end if
  22. end
  23.